* {
    box-sizing: border-box;
}
html {
    width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}
body {
    margin: 0;
    width: 100%;
}
:root {
    --navy: #12203D;
    --navy-dark: #071636;
    --navy-soft: rgba(18,32,61,0.08);
    --bronze: #A8825F;
    --ink: #111111;
    --rule: #E3DED4;
    --visited: #5C5570;
    --button-color: #fff;
    --hero-color: #F8F5F1;
    --home-bgcolor: #F7F4F2;
    --explanatory: #44506a;
    --about-bgcolor: #F9F6F2;
    --lighter-bronze: #D1AE87;
    --border: #E5E3DF;
    --inputbg-color: #EFEBE7;
}
ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.navbar {
    background-image: url("Images used in code/Unsplash banner navy.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 8px 0;
}
.menu_toggle {
    display: none;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--lighter-bronze);
    background: none;
    border: 1px solid var(--bronze);
    padding: 8px 14px;
    border-radius: 4px;
    cursor: pointer;
}
.menu_toggle span {
    display: inline-block;
    margin-left: 6px;
    font-size: 18px;
    line-height: 0;
    transition: transform .2s ease;
}
.menu_toggle.open span {
    transform: rotate(45deg);
}
.nav_container {
    width: min(1300px, 100%);
    margin: 0 auto;
    padding: 0 3%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}
.site-title a {
    min-width: 0;
    font-family: "Fraunces", serif;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    color: var(--lighter-bronze);
    text-decoration: none;
    letter-spacing: -.01em;
    white-space: nowrap;
}
.site-title a:hover {
    color: var(--bronze);
}
.social_links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin: .75rem 0;
    padding: 0;
    flex-wrap: wrap;
}
.social_links li {
    display: flex;
    align-items: center;
}
.social_links li:not(:last-child)::after {
    content: "|";
    font-weight: bold;
    margin: 0 .9rem;
    color: var(--bronze);
}
.link {
    color: var(--lighter-bronze);
    font-family: "Inter", sans-serif;
    font-size: clamp(.85rem, 1.5vw, 1.0625rem);
    font-weight: 500;
    text-decoration: none;
    transition: color .2s ease, text-decoration-color .2s ease;
}
.link:visited {
    color: var(--lighter-bronze);
}
.link:hover,
.link:focus-visible {
    color: var(--bronze);
    text-decoration: underline;
    text-decoration-color: var(--bronze);
}
.link.active,
.link.active:visited {
    color: #fff;
    font-weight: 700;
}
.button {
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 14px;
    padding: 12px 24px;
    min-height: 44px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    cursor: pointer;
    background: var(--navy);
    color: var(--button-color);
    border: none;
    transition: background-color .2s ease, transform .15s ease, opacity .2s ease;
}
.button:hover {
    background: var(--bronze);
}
.button:active {
    background: var(--navy-dark);
    transform: translateY(1px);
}
.button:disabled {
    cursor: not-allowed;
    opacity: .6;
    background: var(--navy);
    transform: none;
}
.hero_section {
    width: 100%;
    background-color: var(--hero-color);
    padding: 3rem 4%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
    border: 2px solid var(--rule);
    box-shadow: 0 18px 45px rgba(18,32,61,.1);
}
.hero_text {
    max-width: 650px;
    min-width: 0;
}
.video_container {
    position: relative;
    width: 100%;
    max-width: 430px;
}
.homepage_video {
    width: 100%;
    max-width: 430px;
    aspect-ratio: 4 / 5;
    border-radius: 14px;
    object-fit: cover;
    object-position: center top;
    border: 1px solid rgba(18,32,61,.08);
    box-shadow: 0 18px 45px rgba(18,32,61,.1);
    display: block;
    transition: transform .2s ease, box-shadow .2s ease;
}
.homepage_video:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 60px rgba(18,32,61,.15);
}
.play_button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: none;
    background: var(--bronze);
    color: var(--home-bgcolor);
    font-size: 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .2s ease, opacity .2s ease;
}
.play_button:hover {
    transform: translate(-50%, -50%) scale(1.08);
    opacity: .9;
}
.headings {
    font-family: "Fraunces", serif;
    font-size: clamp(1.9rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--navy);
    letter-spacing: -.02em;
    margin-bottom: 1.1rem;
    max-width: 17ch;
    display: inline-block;
    border-bottom: 2px solid var(--bronze);
    padding-bottom: 18px;
}
.explanatory_text {
    font-family: "Inter", sans-serif;
    font-size: clamp(.95rem, 1.2vw, 1rem);
    font-weight: 400;
    line-height: 1.8;
    color: var(--explanatory);
    max-width: 34rem;
    margin-bottom: 2rem;
}
.article_list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.article_container {
    width: 100%;
    background-color: var(--home-bgcolor);
    display: flex;
    align-items: center;
    gap: clamp(1.5rem, 4vw, 2.5rem);
    padding: 2rem;
    border: 2px solid var(--rule);
}
.article_container:last-child {
    border-bottom: none;
}
.read_more {
    align-self: flex-start;
    margin-top: .5rem;
    font-weight: 600;
}
.home_card {
    flex: 0 1 430px;
    width: 100%;
    max-width: 430px;
    border: 1px solid var(--rule);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(18,32,61,.1);
    transition: transform .35s ease, box-shadow .35s ease;
}
.home_card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 60px rgba(18,32,61,.16);
}
.home_card img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}
.title_note_container {
    flex: 1;
    min-width: 0;
}
.home_article {
    font-family: "Fraunces", serif;
    font-size: clamp(1.8rem, 3vw, 2.25rem);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -.02em;
    padding: 3px 2%;
    color: var(--navy);
    margin-bottom: 1rem;
}
.home_card_title {
    font-family: "Inter", sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.35;
    color: var(--navy);
}
.home_card_note {
    font-family: "Inter", sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: var(--explanatory);
}
.minute_read {
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--explanatory);
}
.career {
    width: 100%;
    max-width: 100%;
    padding: 2rem;
    background-color: var(--home-bgcolor);
    border: 2px solid var(--rule);
    box-shadow: 0 18px 45px rgba(18,32,61,.1);
}
.timeline {
    border-left: 1.5px solid var(--rule);
    padding-left: 2rem;
}
.timeline_item {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    column-gap: 2rem;
    margin-bottom: 1rem;
    position: relative;
    align-items: start;
    padding-bottom: 1rem;
}
.timeline_year {
    font-family: "Inter", sans-serif;
    font-size: .95rem;
    font-weight: 600;
    color: var(--bronze);
    margin: .4em;
    letter-spacing: .02em;
}
.timeline_content {
    min-width: 0;
}
.timeline_content h4 {
    font-family: "Fraunces", serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--navy);
    margin: 0 0 .5rem;
    line-height: 1.3;
}
.timeline_content p {
    font-family: "Inter", sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--explanatory);
    margin: .2rem 0;
    max-width: 700px;
}
.about {
    background-color: var(--about-bgcolor);
}
.about_container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 28px 3%;
}
.about_content {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(260px, 1fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
}
.about_text {
    max-width: 780px;
    min-width: 0;
}
.about_text h1.headings {
    margin-top: 5px;
}
.about_text p {
    font-family: "Inter", sans-serif;
    font-size: 1rem;
    line-height: 1.9;
    color: var(--explanatory);
    margin-bottom: 28px;
}
.about_text strong {
    color: var(--navy);
    font-weight: 600;
}
.about_mini_heading {
    font-family: "Fraunces", serif;
    font-size: 21px;
    color: var(--navy);
    margin-top: 30px;
    margin-bottom: 20px;
}
.about_text .about_intro {
    margin-top: 1rem;
    font-size: 1.11rem;
    line-height: 1.9;
    color: var(--navy);
}
.about_pullquote {
    font-family: "Fraunces", serif;
    font-size: 1.2rem;
    line-height: 1.5;
    color: var(--navy);
    border-left: 3px solid var(--bronze);
    padding-left: 16px;
    margin: 16px 0;
}
.about_divider {
    border: none;
    border-top: 1px solid var(--rule);
    margin: 16px 0;
}
.about_sidebar {
    width: 100%;
    background: #FAF8F5;
    padding: 28px;
    border: 1px solid var(--rule);
    border-radius: 16px;
    box-shadow: 0 12px 35px rgba(18,32,61,.06);
}
.about_sidebar img {
    width: 300px;
    max-width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: 20px;
    object-fit: cover;
    object-position: center 15%;
    display: block;
    margin: 5px auto 30px;
    box-shadow: 0 20px 50px rgba(18,32,61,.15);
}
.sidebar_card h4 {
    font-family: "Fraunces", serif;
    font-size: 15px;
    font-weight: bold;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: var(--bronze);
    margin-top: 24px;
    margin-bottom: 8px;
}
.sidebar_card h4:first-child {
    margin-top: 0;
}
.sidebar_card p {
    font-family: "Inter", sans-serif;
    font-size: 15px;
    color: var(--explanatory);
    line-height: 1.6;
    margin-bottom: 12px;
}

/* ======================= PROJECTS ======================= */
.project_container {
    max-width: 1300px;
}
.projects_header {
    grid-column: 1 / -1;
}
.projects_header .headings {
    max-width: 22ch;
    margin-top: .5rem;
    margin-bottom: 1.5rem;
}
.projects_header .explanatory_text {
    max-width: 48rem;
    margin-bottom: 0;
}
.projects_grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(2rem, 4vw, 4rem);
    align-items: start;
}
.project {
    width: 100%;
    min-width: 0;
    margin: 0;
}
.project_number {
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .1em;
    color: var(--bronze)!important;
    text-transform: uppercase;
    margin: 0 0 .6rem;
}
.prj_main_card {
    width: 100%;
    aspect-ratio: 16/9;
    background: #FAF8F5;
    border: 1px solid var(--rule);
    border-radius: 10px;
    overflow: hidden;
    margin: 0 0 1.5rem;
}
.prj_main_card img {
    width: 100%;
    height: 100%;
    display: block;
}
.project h2 {
    font-family: "Fraunces", serif;
    font-size: clamp(1.6rem, 2.5vw, 2rem);
    font-weight: 600;
    line-height: 1.2;
    color: var(--navy);
    margin: 0 0 .5rem;
}
.project > p {
    font-family: "Inter", sans-serif;
    font-size: .95rem;
    line-height: 1.7;
    color: var(--explanatory);
    margin: 1rem 0;
    max-width: 760px;
}
.project > p.project_date {
    font-family: "JetBrains Mono", monospace;
    font-size: .75rem;
    color: var(--bronze);
}
.project_number + .prj_main_card {
    margin-top: 0;
}
.prj_mini_card {
    display: inline-block;
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    line-height: 1.5;
    background: var(--navy-soft);
    color: var(--navy);
    padding: 5px 10px;
    border-radius: 5px;
    margin-bottom: .5rem;
}
.prj_mini_card + p {
    margin-top: .75rem;
}
.project_details {
    margin-top: 1rem;
}
.recommendation_card {
    background: #FAF8F5;
    border: 1px solid var(--rule);
    border-radius: 8px;
    overflow: hidden;
}
.recommendation_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 14px 16px;
    border-bottom: 1px solid var(--rule);
}
.recommendation_header .ppc_item {
    margin: 0;
}
.recommendation_call {
    display: flex;
    align-items: center;
    gap: 10px;
}
.recommendation_rating {
    font-family: "JetBrains Mono", monospace;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .06em;
    color: var(--navy);
    background: rgba(168,130,95,.16);
    padding: 5px 9px;
    border-radius: 4px;
}
.recommendation_target {
    font-family: "JetBrains Mono", monospace;
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
}
.recommendation_downside {
    font-family: "JetBrains Mono", monospace;
    font-size: 12px;
    color: var(--bronze);
}
.recommendation_body {
    padding: 14px 16px;
}
.recommendation_body p {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    line-height: 1.6;
    color: var(--ink);
    margin: 0;
}
.prj_midi_card {
    background: #FAF8F5;
    border: 1px solid var(--rule);
    border-radius: 6px;
    padding: 12px 14px;
    margin-top: .6rem;
}
.ppc_item {
    font-family: "JetBrains Mono", monospace;
    font-size: 10px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--lighter-bronze);
    margin: 0 0 4px;
}
.ppc_value {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    color: var(--ink);
    margin: 0;
    line-height: 1.6;
}
.project_buttons {
    display: flex;
    flex-wrap: wrap;
    gap: .7rem;
    width: 100%;
    margin: 1.25rem 0 0;
}
.project_buttons .button {
    flex: 1 1 auto;
}

/* ======================= CONTACT ======================= */
.contact-page {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 28px 3%;
}
.eyebrow {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--lighter-bronze);
    margin-bottom: 8px;
}
.contactForm {
    width: 100%;
    max-width: 900px;
    margin-top: 32px;
}
.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-bottom: 20px;
}
.field {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    min-width: 0;
}
.form-row .field {
    margin-bottom: 0;
}
.field label {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 8px;
}
.field input,
.field select,
.field textarea {
    width: 100%;
    max-width: 100%;
    background: var(--inputbg-color);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 12px 14px;
    font-size: 14px;
    color: var(--navy);
    font-family: "Inter", sans-serif;
}
.field input::placeholder,
.field textarea::placeholder {
    color: #8A8580;
}
.field select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7280' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    cursor: pointer;
}
.field textarea {
    min-height: 140px;
    resize: vertical;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--navy);
}
.confirmation {
    font-size: 13px;
    color: var(--navy);
    margin-top: 12px;
}
footer {
    background: var(--navy);
    color: rgba(247,244,242,.82);
    padding: 1.5rem 4.7%;
    border-top: 4px solid rgba(247,244,242,.15);
}
.footer_links {
    display: flex;
    align-items: center;
    margin: .75rem 0;
    padding: 0;
    flex-wrap: wrap;
}
.footer_links li {
    display: flex;
    align-items: center;
}
.footer_links li:not(:last-child)::after {
    content: "|";
    font-weight: bold;
    margin: 0 .75rem;
    color: rgba(247,244,242,.82);
}
footer p {
    margin: 0;
    font-family: "Inter", sans-serif;
    font-size: .9rem;
    font-weight: 400;
    letter-spacing: .02em;
    line-height: 1.6;
}
footer a {
    color: rgba(247,244,242,.82);
    text-decoration: none;
    font-family: "Inter", sans-serif;
    font-size: .9rem;
    font-weight: 400;
    letter-spacing: .02em;
    transition: color .25s ease;
}
footer a:hover {
    color: #D9D0C7;
    text-decoration: underline;
}
footer a:visited {
    color: rgba(247,244,242,.82);
}

/* ======================= TABLETS ======================= */
@media (max-width: 1000px) {
    .nav_container {
        padding: 0 5%;
    }
    .hero_section {
        grid-template-columns: minmax(240px,.85fr) minmax(0,1fr);
        gap: 2.5rem;
        padding: 2.5rem 5%;
    }
    .article_container {
        gap: 1.5rem;
        padding: 1.5rem;
    }
    .home_article {
        margin-left: 5%;
        margin-right: 5%;
        padding-left: 0;
        padding-right: 0;
    }
    .home_card {
        flex-basis: 380px;
    }
    .about_container {
        padding: 28px 5%;
    }
    .about_content {
        grid-template-columns: minmax(0,1.7fr) minmax(240px,1fr);
        gap: 2.5rem;
    }
    .contact-page {
        padding: 28px 5%;
    }
    .projects_header {
        padding-left: 2%;
        padding-right: 2%;
    }
}

/* ======================= MOBILE ======================= */
@media (max-width: 850px) {
    .navbar {
        padding: 8px 0;
    }
    .nav_container {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 0 5%;
    }
    .site-title {
        width: 100%;
    }
    .menu_toggle {
        display: block;
    }
    .social_links {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: center;
        margin: 8px 0 0;
        padding: 8px 0 0;
        border-top: 1px solid rgba(168,130,95,.35);
    }
    .social_links.open {
        display: flex;
    }
    .social_links li {
        width: 100%;
        justify-content: center;
        padding: 7px 0;
    }
    .social_links li:not(:last-child)::after {
        display: none;
    }
    .link {
        font-size: 15px;
    }
    .hero_section {
        display: flex;
        flex-direction: column;
        padding: 2rem 5%;
        gap: 2rem;
    }
    .hero_text {
        max-width: 100%;
    }
    .video_container {
        max-width: 430px;
        margin: 0 auto;
    }
    .homepage_video {
        max-width: 100%;
    }
    .headings {
        font-size: clamp(1.9rem,8vw,2.4rem);
        max-width: 100%;
        line-height: 1.15;
        padding-bottom: 10px;
    }
    .explanatory_text {
        font-size: .95rem;
        line-height: 1.7;
        max-width: 100%;
    }
    .article_list {
        gap: 1.5rem;
    }
    .article_container {
        flex-direction: column;
        align-items: stretch;
        padding: 1.25rem;
        gap: 1.5rem;
    }
    .hero_section .button {
        display: flex;
        width: 100%;
        margin-bottom: 10px;
    }
    .hero_section .button:last-child {
        margin-bottom: 0;
    }
    .home_card {
        flex: none;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
    .home_article {
        font-size: clamp(1.7rem,7vw,2rem);
        padding: 0;
    }
    .home_card_title {
        font-size: 1.1rem;
    }
    .home_card_note {
        font-size: .95rem;
    }
    .career {
        padding: 1.25rem;
    }
    .timeline {
        padding-left: 1rem;
    }
    .timeline_item {
        grid-template-columns: 1fr;
        gap: .4rem;
        padding-bottom: 1.5rem;
    }
    .timeline_year {
        margin: 0;
    }
    .timeline_content p {
        font-size: .95rem;
        margin: 0 0 1rem;
    }
    .timeline_content p:last-child {
        margin-bottom: 0;
    }
    .about_container {
        padding: 24px 5%;
    }
    .about_content {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
    .about_text {
        max-width: 100%;
    }
    .about_text p {
        font-size: .95rem;
        line-height: 1.8;
    }
    .about_text .about_intro {
        font-size: 1rem;
    }
    .about_sidebar {
        padding: 20px;
        max-width: 500px;
    }
    .about_sidebar img {
        width: 100%;
        max-width: 300px;
    }
    .contact-page {
        padding: 24px 5%;
    }
    .contactForm {
        margin-top: 24px;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
        margin-bottom: 0;
    }
    .form-row .field {
        margin-bottom: 20px;
    }
    .field textarea {
        min-height: 160px;
    }
    .contactForm .button {
        width: 100%;
    }
    footer {
        padding: 1.5rem 5%;
        text-align: center;
    }
    .footer_links {
        justify-content: center;
        row-gap: 8px;
    }
    footer p {
        font-size: .8rem;
        text-align: center;
    }
    footer p + p {
        margin-top: 6px;
    }
    .button:active {
        background: var(--bronze);
        transform: translateY(1px);
    }
    .link:active {
        color: var(--bronze);
    }

    /* Projects remain single-column on mobile */
    .projects_header {
        padding: 0 0 2rem;
    }
    .projects_header .headings {
        margin-top: 0;
        max-width: 100%;
    }
    .projects_header .explanatory_text {
        max-width: 100%;
    }
    .projects_grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .project {
        max-width: 100%;
        margin-bottom: 0;
    }
    .prj_main_card {
        margin-bottom: 1.25rem;
        border-radius: 8px;
    }
    .project h2 {
        font-size: 1.6rem;
        line-height: 1.25;
    }
    .project > p {
        font-size: .95rem;
        line-height: 1.75;
    }
    .prj_mini_card {
        font-size: 10px;
        padding: 5px 8px;
    }
    .prj_midi_card {
        padding: 11px 12px;
    }
    .ppc_value {
        font-size: .9rem;
        line-height: 1.6;
    }
    .project_buttons {
        flex-direction: column;
        gap: .6rem;
        margin-top: 0.3rem;
    }
    .project_buttons .button {
        width: 100%;
    }
    .recommendation_header {
        align-items: flex-start;
        flex-direction: column;
        gap: .6rem;
    }
    .recommendation_call {
        width: 100%;
        justify-content: space-between;
    }
    .recommendation_body {
        padding: 13px 14px;
    }
}

/* ======================= VERY SMALL PHONES ======================= */
@media (max-width: 400px) {
    .site-title a {
        font-size: 1.4rem;
    }
    .link {
        font-size: 13px;
    }
    .headings {
        font-size: 1.9rem;
    }
    .explanatory_text {
        font-size: .9rem;
    }
    .home_article {
        margin-left: 5%;
        margin-right: 5%;
        padding-left: 0;
        padding-right: 0;
    }
    .article_container {
        padding: 1rem;
    }
    .career {
        padding: 1rem;
    }
    .timeline {
        padding-left: .75rem;
    }
    .about_sidebar {
        padding: 16px;
    }
    .button {
        padding: 11px 18px;
    }
    .project h2 {
        font-size: 1.45rem;
    }
    .project > p {
        font-size: .9rem;
    }
    .prj_midi_card {
        padding: 10px;
    }
    .ppc_value {
        font-size: .85rem;
    }
    .project_buttons {
        margin-bottom: 0;
    }
}